home *** CD-ROM | disk | FTP | other *** search
- "FILE"="Xteq Systems X-Setup Plugin 3.1"
- "TYPE"="6"
- "COUNT"="1"
- "UIPATH"="System\Security"
- "NAME"="Known DLLs list"
- "LANGUAGE"="VBScript"
- "TEXT 1"="Disable KnownDLLs cache"
- "DESCRIPTION 1"="By default, Windows NT caches system DLLs in a cache called the 'KnownDLLs' list."
- "DESCRIPTION 2"="A hacker could change this list in that way, that not the original Windows NT DLL is called, but a changed one from the hacker."
- "DESCRIPTION 3"="By activating this option, Windows NT will lock this list so the hacker can't manipulate it."
- "DESCRIPTION 4"="For more information, see the following KB article from Microsoft:"
- "DESCRIPTION 5"="http://support.microsoft.com/support/kb/articles/q218/4/73.asp"
- "AUTHOR"="Xteq Systems"
- "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
- "COMMENT 1"="For more information, go to http://www.xteq.com or write to TeXHeX@xteq.com."
- "COMMENT 2"="Version 1.0"
-
-
- sPath="HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\SessionManager\ProtectionMode"
- Sub Plugin_Initialize
- if GetWinVer=2 then
- i=RegReadValue(sPath)
-
- if i=1 then
- Call SetUIElement(1,true)
- end if
- else
- Disable
- end if
- End Sub
-
- Sub Plugin_CheckData(ElementIndex)
- End Sub
-
- Sub Plugin_Apply(ElementIndex,ElementSubIndex)
- b=GetUIElement(1)
- if b=true then
- Call RegWriteValue(sPath,1,2)
- else
- Call RegWriteValue(sPath,0,2)
- end if
- End Sub
-
-
- Sub Plugin_Terminate
- End Sub
-
-
-
-